From fcd667b266d0294f0f7e73f3246c8f669e20fad3 Mon Sep 17 00:00:00 2001 From: "kfraser@localhost.localdomain" Date: Mon, 19 Feb 2007 15:46:01 +0000 Subject: [PATCH] hvm: Remove noisy warnings associated with MOVS emulation. Signed-off-by: Keir Fraser --- xen/arch/x86/hvm/platform.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/xen/arch/x86/hvm/platform.c b/xen/arch/x86/hvm/platform.c index 6cb510b119..835849c224 100644 --- a/xen/arch/x86/hvm/platform.c +++ b/xen/arch/x86/hvm/platform.c @@ -1048,10 +1048,6 @@ void handle_mmio(unsigned long gpa) else dir = IOREQ_READ; - if ( addr & (size - 1) ) - gdprintk(XENLOG_WARNING, - "Unaligned ioport access: %lx, %d\n", addr, size); - /* * In case of a movs spanning multiple pages, we break the accesses * up into multiple pages (the device model works with non-continguous @@ -1065,8 +1061,6 @@ void handle_mmio(unsigned long gpa) if ( (addr & PAGE_MASK) != ((addr + size - 1) & PAGE_MASK) ) { unsigned long value = 0; - gdprintk(XENLOG_WARNING, - "Single io request in a movs crossing page boundary.\n"); mmio_op->flags |= OVERLAP; if ( dir == IOREQ_WRITE ) { -- 2.30.2